Move G_GNUC_INTERNAL before function declarations. (#352276, Damien
authorMatthias Clasen <mclasen@redhat.com>
Sat, 23 Dec 2006 03:35:21 +0000 (03:35 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sat, 23 Dec 2006 03:35:21 +0000 (03:35 +0000)
2006-12-22  Matthias Clasen  <mclasen@redhat.com>

        * modules/engines/pixbuf/pixbuf.h:
        * modules/engines/pixbuf/pixbuf-rc-style.h:
        * modules/engines/pixbuf/pixbuf-style.h: Move
        G_GNUC_INTERNAL before function declarations.  (#352276,
        Damien Carbery)

ChangeLog
modules/engines/pixbuf/pixbuf-rc-style.h
modules/engines/pixbuf/pixbuf-style.h
modules/engines/pixbuf/pixbuf.h

index fc35db5c7d6fc828f1105486f235a332937ccd7a..0b06485fc381decb1dc2b6766b1caafcfa061268 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-12-22  Matthias Clasen  <mclasen@redhat.com>
+
+       * modules/engines/pixbuf/pixbuf.h:
+       * modules/engines/pixbuf/pixbuf-rc-style.h:
+       * modules/engines/pixbuf/pixbuf-style.h: Move 
+       G_GNUC_INTERNAL before function declarations.  (#352276,
+       Damien Carbery)
+
 2006-12-22  Matthias Clasen  <mclasen@redhat.com>
 
        * demos/gtk-demo/*.c: Fix some leaks.  (#348108, Chris
index 7cc4331de86ed3d423d0187d2d0209c8254a560f..a031b6388f31962ad69fe75c4ec073ebaa13327f 100644 (file)
@@ -25,7 +25,7 @@
 typedef struct _PixbufRcStyle PixbufRcStyle;
 typedef struct _PixbufRcStyleClass PixbufRcStyleClass;
 
-extern GType pixbuf_type_rc_style G_GNUC_INTERNAL;
+extern G_GNUC_INTERNAL GType pixbuf_type_rc_style;
 
 #define PIXBUF_TYPE_RC_STYLE              pixbuf_type_rc_style
 #define PIXBUF_RC_STYLE(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), PIXBUF_TYPE_RC_STYLE, PixbufRcStyle))
@@ -46,4 +46,4 @@ struct _PixbufRcStyleClass
   GtkRcStyleClass parent_class;
 };
 
-void pixbuf_rc_style_register_type (GTypeModule *module) G_GNUC_INTERNAL;
+G_GNUC_INTERNAL  void pixbuf_rc_style_register_type (GTypeModule *module);
index f2950807812ed111c4ca1d6c9f8990a62034adde..4502ee5cabb8b043d01fb9c3b5d2eccf94850df0 100644 (file)
@@ -25,7 +25,7 @@
 typedef struct _PixbufStyle PixbufStyle;
 typedef struct _PixbufStyleClass PixbufStyleClass;
 
-extern GType pixbuf_type_style G_GNUC_INTERNAL;
+extern G_GNUC_INTERNAL GType pixbuf_type_style;
 
 #define PIXBUF_TYPE_STYLE              pixbuf_type_style
 #define PIXBUF_STYLE(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), PIXBUF_TYPE_STYLE, PixbufStyle))
@@ -44,6 +44,6 @@ struct _PixbufStyleClass
   GtkStyleClass parent_class;
 };
 
-void pixbuf_style_register_type (GTypeModule *module) G_GNUC_INTERNAL;
+G_GNUC_INTERNAL void pixbuf_style_register_type (GTypeModule *module);
 
 
index 7f788748cd4e38907ea0faddcfd109144399c570..77e19d4a4ca40976de9aed419d4747bd79b17c7e 100644 (file)
@@ -188,19 +188,19 @@ struct _ThemeImage
 };
 
 
-ThemePixbuf *theme_pixbuf_new          (void) G_GNUC_INTERNAL;
-void         theme_pixbuf_destroy      (ThemePixbuf  *theme_pb) G_GNUC_INTERNAL;
-void         theme_pixbuf_set_filename (ThemePixbuf  *theme_pb,
-                                       const char   *filename) G_GNUC_INTERNAL;
-GdkPixbuf *  theme_pixbuf_get_pixbuf   (ThemePixbuf  *theme_pb) G_GNUC_INTERNAL;
-void         theme_pixbuf_set_border   (ThemePixbuf  *theme_pb,
+G_GNUC_INTERNAL ThemePixbuf *theme_pixbuf_new          (void);
+G_GNUC_INTERNAL void         theme_pixbuf_destroy      (ThemePixbuf  *theme_pb);
+G_GNUC_INTERNAL void         theme_pixbuf_set_filename (ThemePixbuf  *theme_pb,
+                                       const char   *filename);
+G_GNUC_INTERNAL GdkPixbuf *  theme_pixbuf_get_pixbuf   (ThemePixbuf  *theme_pb);
+G_GNUC_INTERNAL void         theme_pixbuf_set_border   (ThemePixbuf  *theme_pb,
                                        gint          left,
                                        gint          right,
                                        gint          top,
-                                       gint          bottom) G_GNUC_INTERNAL;
-void         theme_pixbuf_set_stretch  (ThemePixbuf  *theme_pb,
-                                       gboolean      stretch) G_GNUC_INTERNAL;
-void         theme_pixbuf_render       (ThemePixbuf  *theme_pb,
+                                       gint          bottom);
+G_GNUC_INTERNAL void         theme_pixbuf_set_stretch  (ThemePixbuf  *theme_pb,
+                                       gboolean      stretch);
+G_GNUC_INTERNAL void         theme_pixbuf_render       (ThemePixbuf  *theme_pb,
                                        GdkWindow    *window,
                                        GdkBitmap    *mask,
                                        GdkRectangle *clip_rect,
@@ -209,7 +209,7 @@ void         theme_pixbuf_render       (ThemePixbuf  *theme_pb,
                                        gint          dest_x,
                                        gint          dest_y,
                                        gint          dest_width,
-                                       gint          dest_height) G_GNUC_INTERNAL;
+                                       gint          dest_height);